home *** CD-ROM | disk | FTP | other *** search
- #import <appkit/View.h>
-
- @interface YapOutput:View {
- id cache; // Bitmap in which we cache the output of the PS program
- BOOL showCache;
- BOOL clearCache;
- BOOL meshON;
- BOOL figureBB;
- }
-
-
- - initFrame:(const NXRect *)viewFrame;
-
- - sizeTo:(NXCoord)width :(NXCoord)height;
- - free;
- // - executeCodeFrom:textObj;
- - executeCodeFrom:textObj andReturnBB: (float *)llx : (float *)lly
- : (float *)urx : (float *)ury
- usertime: (int *) utime;
-
- - drawSelf:(NXRect *)rects :(int)rectCount;
-
- - (BOOL)isCacheCleared;
- - (BOOL)isCacheShown;
- - (BOOL)isMeshON;
- - (BOOL)isFigureBB;
- - setCacheCleared:(BOOL)flag;
- - setCacheShown:(BOOL)flag;
- - setMeshON:(BOOL)flag;
- - setFigureBB:(BOOL)flag;
-
- @end
-
-
-
-
-